home *** CD-ROM | disk | FTP | other *** search
/ Champak 120 / Vol 120.iso / games / bounce_c.swf / scripts / frame_60 / DoAction.as
Text File  |  2010-11-09  |  433b  |  23 lines

  1. stop();
  2. removeAllClips();
  3. _root.onEnterFrame = function()
  4. {
  5.    back3._x = -440 + _xmouse / 1.5;
  6.    back2._x = -300 + _xmouse / 4;
  7.    back1._x = -230 + _xmouse / 8;
  8. };
  9. menuButton.onRollOver = function()
  10. {
  11.    this._xscale = 120;
  12.    this._yscale = 120;
  13. };
  14. menuButton.onRollOut = function()
  15. {
  16.    this._xscale = 100;
  17.    this._yscale = 100;
  18. };
  19. menuButton.onPress = function()
  20. {
  21.    _root.gotoAndStop("menuScreen");
  22. };
  23.